﻿
/* Outer blue background */
.blue-section {
    background-color: #0d6efd; /* Bootstrap blue */
    padding: 40px 0;
}

/* Inner white content box */
.white-box {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Make tables responsive */
table {
    max-width: 100%;
}

/* Optional: center tables */
table {
    margin: auto;
}

h3, h5 {
    border-bottom: 2px solid #fd7e14;
    padding-bottom: 6px;
}


body {
    font-family: Arial, sans-serif;
    margin: 7px;
    line-height: 1.6;
}

h1, h2 {
    color: #2c3e50;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

th, td {
    border: 1px solid #999;
    padding: 10px;
    text-align: left;
}

th {
    background: #f2f2f2;
}

a {
    color: #0066cc;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

